home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 11 / Info-Mac_XI_Disc_1.cdr_ / Info-Mac XI Disc 1.cdr / Programs / Disk & File / touchMe 1.1.2 / Guide source / Build File next >
Encoding:
Text File  |  1997-02-10  |  2.3 KB  |  72 lines  |  [TEXT/ttxt]

  1. ################################
  2. #
  3. #    File:        Build File
  4. #
  5. #    Contains:    Guide Script commands pointing to all of the related
  6. #            source files needed to build a guide file.
  7. #
  8. #    Coded by:    Glenn Katz
  9. #    Modified by:    Mizutori Tetsuya, January 23, 1997
  10. #
  11. #    Copyright:    ©1994 by Apple Computer, Inc.
  12. #    Copyright:    ©1997 by Mizutori Tetsuya
  13. #
  14. ################################
  15.  
  16. ################################
  17. #    How To Use This File
  18. ################################
  19.  
  20. # This file points to all of the related source files that define your
  21. # guide file.
  22. #
  23. # This file is part a set of files that you will compile to create your
  24. # guide file.  You will also need:
  25. #
  26. # • Standard Setup   - a file that contains the Guide Script commands 
  27. #                      needed to setup a guide file that follows the 
  28. #                      Apple Guide HI guidelines.  
  29. #
  30. # • Content    - a file that contains the actual text that appears on
  31. #                the guide file panels.  (As your guide file grows, it
  32. #                may be helpful to break the Content file into several
  33. #                smaller files).
  34. #
  35. #    To use this file:
  36. #
  37. #  1.  Edit the "Content" file to define the content of your guide file.
  38. #
  39. #  2.  This file already points to the "Standard Setup" and "Content" files.
  40. #      You can use it "as is", but if you break your content into
  41. #      several smaller files, you must add <Include> commands to also
  42. #      point to them.
  43. #
  44. #  3.  Use the Guide Maker Build utility to compile this file.
  45.  
  46.  
  47.  
  48. ################################
  49. #    Relates Source Files
  50. ################################
  51.  
  52. # You can include all of the Guide Script commands that define your
  53. # guide file in a single source file or in multiple source files. 
  54. # Use an <Include> command to point to each of the other source files 
  55. # that contain Guide Script commands.
  56.  
  57. <Include> "Standard Setup"
  58. <Include> "Content"
  59.  
  60. # Use the <Resource> command to specify each file containing 
  61. # resources to be included in your guide file. You can include all 
  62. # resources in a file, all resources of a given resource type, 
  63. # all resources with a given resource ID or resource name, 
  64. # or a single resource.
  65. #
  66. # Syntax: <Resource> fileName, resType [, whichResource]
  67.  
  68. <Resource> "Standard Resources", ALL
  69.  
  70. # Modified by Mizutori
  71. <Resource> "touchMe Guide.rsrc", ALL
  72.